home *** CD-ROM | disk | FTP | other *** search
/ Shareware Extravaganza - Disc 4 / Shareware Extravaganza - Over 25,000 Programs (The Ultimate Shareware Company)(Disc 4 of 4)(1993).iso / cad / sirlinvw.zip / VIEW.CNF < prev    next >
Text File  |  1990-07-31  |  5KB  |  137 lines

  1. #---------------------------------------------------------------------------#
  2. # SirlinVIEW Viewstation Configuration File
  3. #
  4. #    This file can be edited to change the Viewstation software
  5. #    configuration. 
  6. #
  7. #    Lines starting with the pound-sign, "#", are commented out
  8. #    (that is, the rest of the line is ignored), and the standard 
  9. #    values are shown. To change a definition, use a text editor to 
  10. #    delete the # at the beginning of the *Define statement, and 
  11. #    change the defined value as necessary.
  12. #---------------------------------------------------------------------------#
  13.  
  14. #---------------------------------------------------------------------------#
  15. # Viewstation auxillary file names
  16. #---------------------------------------------------------------------------#
  17.  
  18. *Define HELPFILE    "VIEW.HLP"
  19. *Define PDTFILE        "VIEW.PDT"
  20. *Define PRNCONFIG    "VIEW.PRN"
  21.  
  22. #---------------------------------------------------------------------------#
  23. # If the aspect ratio of your drawings look distorted, you can correct the
  24. # aspect ratio. Common settings for standard graphics cards are:
  25. #    VGA     use 1.00
  26. #    EGA     use 1.33
  27. #    Hercules use 1.50
  28. # This value represents (sizey/sizex) of a square. See READ.ME file.
  29. # Normally, the ASPECTRATIO is automatically set by Viewstation.
  30. #---------------------------------------------------------------------------#
  31.  
  32. #*Define ASPECTRATIO    1.00
  33.  
  34. #---------------------------------------------------------------------------#
  35. # DWGVIEW defines the initial view of each drawing when it is
  36. # loaded and drawn for the first time. 
  37. # Valid values are: (be sure to include the colon)
  38. #
  39. #    ZoomDefault:    zoom to the default view when drawing last saved
  40. #    ZoomExtents:    zoom to include all entities
  41. #    ZoomLimits:    zoom to the drawing limits
  42. #    ZoomAll:    zoom to the union of limits and extents
  43. #
  44. #---------------------------------------------------------------------------#
  45.  
  46. *Define DWGVIEW        ZoomDefault:
  47.  
  48.  
  49. #---------------------------------------------------------------------------#
  50. # Change DWGPATH if you want viewstation's Load File dialog box to
  51. # to default to a specific drawing directory, rather than the current
  52. # directory when you start the program.
  53. # For example, if your drawings are stored in directory D:\DWG, add:
  54. #
  55. #    *Define DWGPATH        "D:\\DWG\\"
  56. #
  57. # NOTICE: Use Double-Backslashes within double-quotes
  58. #---------------------------------------------------------------------------#
  59.  
  60.  
  61. #---------------------------------------------------------------------------#
  62. # Drawing View Control Parameters
  63. # You can change the following parameters to select between speed versus
  64. # accuracy of the cad drawing display. Acceptable values are OFF or ON, 
  65. # unless otherwise noted.
  66. #
  67. #    Linetype    - if OFF, all linetypes are shown as CONTINUOUS
  68. #    Fill        - if OFF, only the outlines are shown
  69. #    Curve        - if OFF, only the control points are plotted, not
  70. #                the detail curve points
  71. #    Width        - if OFF, all lines are drawn single width
  72. #    Text        - if OFF, no text is displayed, ON: text shown in font
  73. #                specified, or SIMPLE: text shown in internal 
  74. #                SIMPLEX font. Note that Text OFF also disables
  75. #                SHAPEs and ATTRIBUTES
  76. #    Shape        - if OFF, no shapes are displayed
  77. #    Attrib        - if OFF, no block attributes are displayed
  78. #    Greek        - if OFF, no greeking performed; ON: enables greeking,
  79. #                text and shapes smaller than GreekSize are not
  80. #                drawn;
  81. #    GreekSize    - number specifies pixel size of text to be greeked
  82. #    HideLayers    - if ON, all layers are drawn, even if "hidden"
  83. #    HideFrozen    - if OFF, frozen layers are ignored and not drawn;
  84. #                if ON, they are treated as THAWED
  85. #    Clip        - if ON, clipping is enabled (entities off screen are
  86. #                not processed). Should always be ON.
  87. #    ShxNotify    - if OFF, the user is not notified when a SHX font 
  88. #                file is not found while reading the drawing
  89. #    Circle        - number specifies number of chords used to draw a
  90. #                circle. A value of 24 draws 15 degree chords
  91. #                (360/24 = 15), is sufficient for most video
  92. #                display modes. A value of 72 produces 5 degree
  93. #                chords, for very smooth circles and arcs on 
  94. #                hardcopy.
  95. #                
  96. #---------------------------------------------------------------------------#
  97.  
  98. # Screen Drawing Control (optimized for speed)
  99. *New DwgControl screenControl {
  100.  
  101.     SetCntlLinetype:    ON
  102.     SetCntlFill:        ON
  103.     SetCntlCurve:        ON
  104.     SetCntlWidth:        ON
  105.     SetCntlText:        ON
  106.     SetCntlShape:        ON
  107.     SetCntlAttrib:        ON
  108.     SetCntlGreek:        OFF
  109.     SetCntlGreekSize:    4
  110.     SetCntlHideLayers:    ON
  111.     SetCntlHideFrozen:    ON
  112.     SetCntlClip:        ON
  113.     SetCntlShxNotify:    OFF
  114.     SetCntlCircle:        24
  115. }
  116.  
  117. # Print Drawing Control (optimized for accuracy)
  118. *New DwgControl printControl {
  119.  
  120.     SetCntlLinetype:    ON
  121.     SetCntlFill:        ON
  122.     SetCntlCurve:        ON
  123.     SetCntlWidth:        ON
  124.     SetCntlText:        ON
  125.     SetCntlShape:        ON
  126.     SetCntlAttrib:        ON
  127.     SetCntlGreek:        OFF
  128.     SetCntlGreekSize:    4
  129.     SetCntlHideLayers:    ON
  130.     SetCntlHideFrozen:    ON
  131.     SetCntlClip:        ON
  132.     SetCntlShxNotify:    OFF
  133.     SetCntlCircle:        72
  134. }
  135.  
  136. #---------------------------------------------------------------------------#
  137.